home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20031118-20041115 / 000429_fdc@columbia.edu_Wed Oct 27 13:12:48 2004.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: abusing kermit for Xmodem uploads
  5. Date: 27 Oct 2004 17:12:33 GMT
  6. Organization: Columbia University
  7. Lines: 28
  8. Message-ID: <slrncnvlo1.3tj.fdc@sesame.cc.columbia.edu>
  9. References: <2u9spoF28kmiqU1@uni-berlin.de>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1098897153 21420 128.59.59.56 (27 Oct 2004 17:12:33 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 27 Oct 2004 17:12:33 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15213
  17.  
  18. On 2004-10-27, Jukka Salmi <j+usenet@2004.salmi.ch> wrote:
  19. : I'm trying to do Xmodem uploads from a NetBSD 2.0 system to a
  20. : Soekris net4501 using kermit and lrzsz. I know how to do this
  21. : using tip(1)/cu(1) and lrzsz, but I'd like to achieve the same
  22. : using kermit. However, I've never used kermit before...
  23. :
  24. : When using tip, I connect to the corresponding serial port, use
  25. : the "download" to put the net4501 in "receive mode", use tip's ~C
  26. : escape to fork a child process, and start uploading the file
  27. : with "lsz -X file".
  28. :
  29. : How can I do this with kermit? So far I tried the following kermit
  30. : commands:
  31. :
  32. : set protocol xmodem-crc download {} {lsx %s} {} {lrx %s} {}
  33. : set line /dev/tty00
  34. : set speed 9600
  35. : set carrier-watch off
  36. : set flow-control xon/xoff
  37. : send /binary file
  38. :
  39. : but this fails:
  40. :
  41. Try telling Kermit to "set flow rts/cts" or (if that doesn't work)
  42. "set flow none".  Xon/Xoff flow control is incompatible with Xmodem 
  43. protocol.
  44.  
  45. - Frank